home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / XMLXSLT / ASPEx / emp_style.xsl next >
Encoding:
Text File  |  2000-12-02  |  593 b   |  23 lines

  1. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="1.0">
  2. <xsl:output omit-xml-declaration="yes" />
  3.   
  4.   <xsl:template match="employees">
  5.  
  6.   <HTML>
  7.   <BODY>
  8.   <H1>EMPLOYEE LISTING</H1><BR />
  9.     <TABLE>
  10.     <TR><TD>Employee number</TD><TD>Last Name</TD><TD>First Name</TD></TR>
  11.     <xsl:for-each select="employee">
  12.     <TR><TD><xsl:value-of select="@emp_no" /></TD>
  13.     <TD><xsl:value-of select="emp_lastname" /></TD>
  14.     <TD><xsl:value-of select="emp_firstname" /></TD>
  15.     </TR>
  16.      </xsl:for-each>
  17.      </TABLE>
  18.  
  19.   </BODY>
  20.   </HTML>
  21.      
  22.   </xsl:template>
  23. </xsl:stylesheet>